Skip to main content

List Profiles

Route

/v2/streaming/profiles

Description

Retrieve a list of all streaming profiles configured in your organization. Profiles define what data to stream and how to stream it.

Method

GET

Inputs

ParameterTypeRequiredDescription
None--No parameters required

Output

FieldTypeDescription
resourcesarray[Profile]Array of profile objects
errorsarray[Error]Any errors encountered

Profile Object Structure

FieldTypeDescription
idstringUnique profile identifier
namestringHuman-readable name
descriptionstringDetailed description
sourcesarray[Source]Data sources to stream
destination_idstringTarget destination ID
count_thresholdintegerBatch size threshold
delay_thresholdstringBatch delay threshold
statestringProfile state (active, stopped, paused)
dead_letter_statestringDead letter queue state
scope_idstringScope identifier
configobjectProfile configuration

Rate Limit

  • 60 requests per minute per API key
  • 5 concurrent requests per endpoint

Example Response

{
"resources": [
{
"id": "profile-123",
"name": "Security Events Stream",
"description": "Stream security incidents to SIEM",
"sources": [
{
"type": "incidents"
}
],
"destination_id": "dest-456",
"count_threshold": 1000,
"delay_threshold": "10s",
"state": "active",
"dead_letter_state": "ready",
"scope_id": "scope-789",
"config": {
"include_ai_summary": true
}
}
],
"errors": []
}